home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
gnu
/
grep
/
grep.lzh
/
tests
/
scriptgen.awk
< prev
next >
Wrap
Text File
|
1989-03-02
|
274b
|
11 lines
BEGIN { print "failures=0"; }
!/^#/ && NF == 3 {
print "echo '" $3 "' | ../egrep -e '" $2 "' > /dev/null 2>&1";
print "if [ $? != " $1 " ]"
print "then"
printf "\techo Spencer test \\#%d failed\n", ++n
print "\tfailures=1"
print "fi"
}
END { print "exit $failures"; }